home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
e_to_l
/
fllab200
/
inst16
/
flashreg.pas
< prev
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
326b
|
20 lines
unit Flashreg;
interface
uses
Classes, DsgnIntF,
FlashLab, ClrCycEd, ClrCycE2;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('New', [TMCFlashServer, TMCFlashLabel]);
RegisterPropertyEditor(TypeInfo(TColorCycling), nil, '', TColorCyclingPropertyEditor);
end;
end.